home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / splash.dxr / 00027.ls < prev    next >
Encoding:
Text File  |  2000-03-23  |  294 b   |  19 lines

  1. property pSpr, pFrameCount
  2.  
  3. on beginSprite me
  4.   pSpr = sprite(2)
  5.   pFrameCount = pSpr.member.frameCount
  6.   pSpr.static = 1
  7. end
  8.  
  9. on exitFrame me
  10.   if pSpr.frame > 1 then
  11.     pSpr.frame = pSpr.frame - 1
  12.     if soundBusy(1) then
  13.       go(the frame)
  14.     else
  15.       go(#next)
  16.     end if
  17.   end if
  18. end
  19.